# Create a scatter plot
fig = px.scatter(x=X[:, 0], y=X[:, 1], color=y)
# Set axis labels and title
fig.update_layout(
xaxis_title='Sepal Length',
yaxis_title='Sepal Width',
title='Iris Dataset - Sepal Length vs Sepal Width'
)
# Display the plot
fig.show()
Below is a matplot graph using the Iris dataset.
This text is in red. while this text is in blue.
this is what an Iris looks like.